home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / gcc / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-30  |  1.2 KB  |  51 lines

  1. /* Define constants for communication with parse.y.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU CC General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU CC, but only under the conditions described in the
  15. GNU CC General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU CC so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22.  
  23. enum rid
  24. {
  25.   RID_UNUSED,
  26.   RID_INT,
  27.   RID_CHAR,
  28.   RID_FLOAT,
  29.   RID_DOUBLE,
  30.   RID_VOID,
  31.   RID_UNUSED1,
  32.  
  33.   RID_UNSIGNED,
  34.   RID_SHORT,
  35.   RID_LONG,
  36.   RID_AUTO,
  37.   RID_STATIC,
  38.   RID_EXTERN,
  39.   RID_REGISTER,
  40.   RID_TYPEDEF,
  41.   RID_SIGNED,
  42.   RID_CONST,
  43.   RID_VOLATILE,
  44.   RID_INLINE,
  45.   RID_NOALIAS,
  46.  
  47.   RID_MAX,
  48. };
  49.  
  50. #define RID_FIRST_MODIFIER RID_UNSIGNED
  51.